Maven Space Challenge
Link to GitHub repository, including data and final output.
About the dataset
4,631 records of all space missions from 1957 to August 2022, including details on the location, date, and result of the launch, the company responsible, and the name, price, and status of the rocket used for the mission.
How to play the Maven Space Challenge
In this challenge, I presented a single-page data visualisation that captured our history with space travel.
Guiding questions
- How have rocket launches trended across time?
- Has the mission success rate increased?
- Which countries have had the most successful space missions?
- Has it always been that way?
- Which rocket has been used for the most space missions? Is it still active?
- Are there any patterns you can notice with the launch locations?
1. How have rocket launches trended across time?
This question asks about a trend over time. Hence, it is best to use a line chart. I used the number of rockets launched as the Y-axis. I added some data labels to key events during the period shown. This required some readings on space exploration, the Space Race and the commercialisation of space travel. Insights:
2. Has the mission success rate increased?
We cannot directly get the success rate from the dataset. A measure is needed:
Success rate =
DIVIDE(
CALCULATE(
COUNT(space_missions[MissionStatus]),
space_missions[MissionStatus] = "Success"
),
COUNT(space_missions[MissionStatus])
)
The CALCULATE in the nominator returns the number of successful missions, while the denominator counts all the missions. When we put this into the graph, the year filter context from the graph provides the annual success rate.
Insights:
3. Which countries have had the most successful space missions?
The dataset only provides a list of companies but not the country of those companies. From reading about space exploration, we know space travel is expensive. Therefore, there are few countries actively engaged in this area. We can indirectly answer this question by looking at the top companies and referencing their countries. However, we get a partial picture if we only look at the success rate. Some companies have a 100% success rate, but they only launched a small number of rockets. We also need to look at the total number of rockets launched to get a more general sense. Bar charts are recommended when comparing values (rockets) between different categories (companies).
Insights:
4. Has it always been that way?
This follow-up question to question 3 requires us to plot the success rate on a line chart. However, if we plot all companies on the same chart, it becomes unreadable. Instead, I plot several charts with companies with similar features (government enterprises, US private organisations and US defence-linked companies) for comparison. Insights:
5. Which rocket has been used for the most space missions? Is it still active?
A bar chart can answer the first question, which shows USA/USSR rockets. For the second question, the answer is simply ‘No’ for all rockets in the top 5, but it does not provide much insight. I included a second chart to show the current top active rockets. These two charts combined indicate a change in the sources of rockets. To get the number of active rockets, we need another measure:
Active count =
CALCULATE(
COUNT(space_missions[RocketStatus]),
space_missions[RocketStatus] = "Active"
)
Insights:
6. Are there any patterns you can notice with the launch locations?
Usually, the country that develops the rocket will launch using local infrastructure. Shipping rocket components would incur costs. Hence, the answer to this question will reinforce the insight from question 5. Not surprisingly, the change in launchpads' location coincides with the decline from Russia and the emergence of China. Insights: